home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d6 / kgraf.arc / KWIKGRAF.HLP < prev    next >
Text File  |  1989-04-01  |  10KB  |  300 lines

  1. KWIKGRAF Version 1.00 Help Screens
  2. @1,KWIKGRAF commands, Running KWIKGRAF from DOS
  3. @3,     PIECHART Summary
  4. @4,     PICTOGRAM Summary
  5. @5,     HISTOGRAM Summary
  6. @6,     3-D Bar Chart Summary
  7. @7,     SCATTERPLOT Summary
  8. @8,     TIME SERIES PLOT Summary
  9. @9,Running KWIKGRAF from dBASE III
  10. @10,Using a KWIKGRAF command file - From DOS or KWIKGRAF menu
  11. @12,The KWIKGRAF Menu
  12. @13,How to Enter Data into KWIKGRAF
  13. @14,    Enter data from an ASCII file
  14. @15,Set up MONITOR, COLORS, and DEFAULT PATH
  15. @16,SHAREWARE explained
  16. ##1
  17.  
  18.                                KWIKGRAF COMMANDS
  19.  
  20. The KWIKGRAF command line specifics what database to use, which graph to
  21. draw, which variable in the database to use, a title, and other information
  22. specific to the graph being displayed.  A command line looks like this: 
  23.  
  24. DATA=EXAMPLE GRAPH=PIE X=STATUS TITLE="THIS IS MY TITLE"
  25.  
  26. Important points:
  27.  
  28.     1. No blanks between the key word (i.e. DATA), the equal sign and
  29.        the specification (i.e. EXAMPLE)
  30.     2. Case does not matter.
  31.     3. Titles MUST be enclosed in quotes
  32.  
  33. In this example, the database is specified by the DATA keyword, and the 
  34. database name is EXAMPLE.  The GRAPH keyword specifies a PIE chart.  The X 
  35. variable is has the field name STATUS, and the TITLE is "THIS IS MY TITLE". 
  36.  
  37. ##2
  38.  
  39. Required KWIKGRAF keywords for drawing a graph:
  40.  
  41.     DATA=          Specified datebase name
  42.  
  43.     GRAPH=         Specifies graph type. This can be PIE
  44.                    HISTOGRAM, PICTOGRAPH, SCATTERPLOT,
  45.                    TIMEPLOT or 3-D HISTOGRAM.  These can be
  46.                    abbreviated to PIE, HISTO, PICTO, SCAT,
  47.                    TIME and 3-D.
  48.  
  49.     X=             Specifies field name of variable to use
  50.  
  51. If two variables are required, as in SCAT and 3-D, then a required
  52. keyword is:
  53.  
  54.     Y=             Specifies second field name
  55.  
  56. ##3
  57.  
  58.                              PIE CHART SUMMARY
  59.  
  60.  
  61. Required Keywords: DATA=databasename
  62.                    GRAPH=PIE
  63.                    X=fieldname
  64.  
  65. Optional Keywords: TITLE="enclose title in quotes"
  66.  
  67. For example:
  68.  
  69. KWIKGRAF DATA=EXAMPLE GRAPH=PIE X=STATUS TITLE="Pie Chart on Status"
  70.  
  71.  
  72.  
  73. ##4
  74.  
  75.                                PICTOGRAM SUMMARY
  76.  
  77. Required Keywords: DATA=databasename                
  78.                    GRAPH=PICTO
  79.                    X=fieldname
  80.                    IMG=imagefile
  81.  
  82. Optional Keywords: TITLE="enclose title in quotes"
  83.  
  84. For example:
  85.  
  86. KWIKGRAF DATA=EXAMPLE GRAPH=PICTO X=STATUS IMG=PERSON TITLE="Status"
  87. ##5
  88.  
  89.                                HISTOGRAM SUMMARY
  90.  
  91.  
  92. Required Keywords: DATA=databasename
  93.                    GRAPH=HISTO
  94.                    X=fieldname (must be numeric)
  95.                                                     
  96.                                                     
  97. Optional Keywords: TITLE="enclose title in quotes"  
  98.                                                     
  99.                                                     
  100. For example:
  101.  
  102. KWIKGRAF DATA=EXAMPLE GRAPH=HISTO X=AGE TITLE="Histogram on Age"
  103.  
  104. ##6
  105.  
  106.                              3-D BAR CHART SUMMARY
  107.  
  108.  
  109. Required Keywords: DATA=databasename                    
  110.                    GRAPH=3-D
  111.                    X=fieldname
  112.                    Y=fieldname
  113.  
  114. Optional Keywords: TITLE="enclose title in quotes"      
  115.                                                         
  116.                                                         
  117. For example:
  118.                                                         
  119. KWIKGRAF DATA=EXAMPLE GRAPH=3-D X=STATUS Y=GROUP TITLE="Status By Group"
  120.  
  121. ##7
  122.  
  123.                               SCATTERPLOT SUMMARY
  124.  
  125.  
  126. Required Keywords: DATA=databasename                                      
  127.                    GRAPH=SCAT
  128.                    X=fieldname (must be numeric)
  129.                    Y=fieldname (must be numeric)
  130.                                                                           
  131. Optional Keywords: TITLE="enclose title in quotes"
  132.                                                                           
  133.                                                                           
  134. For example:
  135.                                                                           
  136. KWIKGRAF DATA=EXAMPLE GRAPH=SCAT X=TIME1 Y=TIME2 TITLE="Time1 by Time2"
  137.                                                                           
  138.  
  139. ##8
  140.  
  141.                             TIME SERIES PLOT SUMMARY
  142.  
  143.                                                                          
  144. Required Keywords: DATA=databasename                                     
  145.                    GRAPH=TIME
  146.                    X=fieldname (must be numeric)                         
  147.  
  148. Optional Keywords: TITLE="enclose title in quotes"                       
  149.                                                                          
  150.                                                                          
  151. For example:
  152.                                                                          
  153. KWIKGRAF DATA=EXAMPLE GRAPH=TIME X=TIME1 TITLE="Plot of Time1"
  154. ##9
  155.  
  156.                         RUNNING KWIKGRAF from dBASE III
  157.  
  158.  
  159.  
  160. From within dBASE III, you can cause a KWIKGRAPH graph to be produced by 
  161. using the RUN command.  For example:
  162.  
  163. .RUN KWIKGRAF DATA=EXAMPLE GRAPH=TIME X=TIME1 TITLE="Plot of Time1"
  164.  
  165. For this to work, the KWIKGRAF program needs to be in the same subdirectory 
  166. as dBASE III.  Otherwise, you need to place the path name before the 
  167. KWIKGRAF command. 
  168.  
  169. ##10
  170.                         USING KWIKGRAF COMMAND FILES
  171.  
  172.  
  173. Create a file containing a series of KWIKGRAF commands Here are some
  174. examples: 
  175.  
  176. KWIKGRAF DATA=EXAMPLE GRAPH=SCAT X=TIME1 Y=TIME2 TITLE="Time1 by Time2"
  177. KWIKGRAF DATA=EXAMPLE GRAPH=3-D X=STATUS Y=GROUP TITLE="Status By Group"
  178.  
  179. If your command is too long for a line, place a "+" at the end of the line.
  180. For example: 
  181.  
  182. KWIKGRAF DATA=EXAMPLE GRAPH=SCAT X=TIME1 Y=TIME2 +
  183. TITLE="Time1 by Time2"
  184.  
  185. continued . . .
  186. ##11
  187.  
  188.                      USING KWIKGRAF COMMAND FILES continued
  189.  
  190.  
  191. To cause text, such as what you are reading to be displayed, place the 
  192. command @DISPLAY on a line, followed by all of the lines to display, and 
  193. end the display with the command @END.  If you place the keyword BORDER
  194. on the line with @DISPLAY, a border will appear around the text.
  195.  
  196. To run a command file, enter the following command from DOS. 
  197.  
  198. KWIKGRAF FILE=commandfile
  199.  
  200.  
  201. Command files should have a .KG extension.
  202.  
  203.  
  204. ##12
  205.  
  206.                                The KWIKGRAF Menu
  207.                                    ----------
  208.  
  209. If you enter the KWIKGRAF command from DOS with no other keywords, you will 
  210. be in "menu" mode, where you can interactively create graphs.
  211.  
  212. You can choose the "G" option to run KWIKGRAF command files.
  213.  
  214. There are a few more options you can choose from the menu mode than from the 
  215. command mode, such as specifying certain minimums and maximums for graphs.
  216. You can also run two other KWIKGRAF programs, KWIKDATA and KWIKUTIL
  217.  
  218. KWIKDATA - create a DATABASE file, enter data, manipulate data.
  219.  
  220. KWIKUTIL - Create an IMAGE, set colors and default disk, output reports.
  221. ##13
  222.  
  223.                                HOW TO ENTER DATA
  224.  
  225. Data may be entered from the keyboard, or from an ASCII text file. Data 
  226. already stored in a dBASE III file may also be used. 
  227.  
  228.                         ENTERING DATA FROM THE KEYBOARD
  229.  
  230. STEP 1:Create the structure of your database by selecting the "CREATE". 
  231. Define names, type and width of each field.
  232.  
  233. STEP 2:Answer "Y" to "Enter data now?(Y/N)" question, for choose Enter DATA 
  234. from KEYBOARD.
  235.  
  236. STEP 3:The "EDIT" option to make corrections.
  237.  
  238. ##14
  239.                      ENTERING DATA FROM AN ASCII TEXT FILE
  240.  
  241. Create a database structure using the CREATE option. This structure should 
  242. match the columns of data in the data file. For example, your data is in a 
  243. file named "MYDATA.TXT". A database structure could be created using the 
  244. following format: 
  245.  
  246. Field Type  Width  Dec
  247.  
  248. NAME    C    10
  249. AGE     N     2     0
  250. BDATE   D     8
  251.  ^      ^     ^     ^                                                          
  252.  │      │     │     └─────────────Number of decimals in numeric data           
  253.  │      │     └───────────────────Columns where data is found                  
  254.  │      └─────────────────────────Data type
  255.  └────────────────────────────────Variable (field) name                        
  256.                                                                                
  257. This implies NAME is in columns 1-10, AGE in cols 11-12 and BDATE in cols 
  258. 13-21. NOTICE:The format MUST be inclusive with respect to column numbers. DO 
  259. NOT SKIP COLUMNS when specifying where data is located.
  260. ##15
  261.  
  262.                    SET UP TYPE MONITOR, COLORS, DEFAULT PATH
  263.  
  264.  
  265. In the KWIKUTIL module, select the option to set up the default disk drive or
  266. path, the type monitor you are using, and the colors to use.
  267.  
  268. If you are using a Hercules (Monochrome-type) graphics monitor, you may
  269. experience problems getting the graphics to appear on the screen, or printed 
  270. to the printer.  Read the manual appendix on monitors.  Check the file
  271. LATENEWS.DOC for any late news. 
  272.  
  273. You may also set up the path where your data is stored. For example, if the
  274. data is stored in another subdirectory, such as "MYDIR", specify the default 
  275. path as "\MYDIR\" or "C:\MYDIR\" 
  276.  
  277. The path will be added to the beginning of filenames used in the program.
  278.  
  279. ##16
  280.                                S H A R E W A R E
  281.                                _________________
  282.  
  283.  
  284.                             TRY IT BEFORE YOU BUY IT
  285.  
  286. The purpose of shareware products is to allow you to try software products 
  287. before you buy them.  KWIKGRAF is not a public domain program. Persons who
  288. use KWIKGRAF should become registered users. You receive several benefits
  289. from registration. 
  290.  
  291. 1. You help to keep the product growing to meet your needs.
  292. 2. You receive the very latest version, with a printed, bound, and expanded 
  293. manual.
  294. 3. You receive periodic newsletters announcing new releases, and pointing out 
  295. important information on any bugs and fixes.
  296. 4. You are able to purchase update to new versions for a minimal cost.
  297.  
  298. Print the file on disk named ORDER to register.  Thanks.
  299.  
  300. are able